From: Chong Yidong Date: Sun, 27 Dec 2009 08:11:12 +0000 (+0000) Subject: * minibuf.c (Fall_completions): Minor optimization. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~8850 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=9091c6767ef8ec4e84c5407d325cbacd53bcfe2f;p=emacs.git * minibuf.c (Fall_completions): Minor optimization. --- diff --git a/src/ChangeLog b/src/ChangeLog index cec59fd8123..ab67231ab51 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-12-27 Chong Yidong + + * minibuf.c (Fall_completions): Minor optimization. + 2009-12-26 Eli Zaretskii * .gdbinit (pgx): Fix display of composite glyphs. Display diff --git a/src/minibuf.c b/src/minibuf.c index 3c070d6fbab..7af5c3e1b41 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1647,10 +1647,10 @@ with a space are ignored unless STRING itself starts with a space. */) && SCHARS (string) <= SCHARS (eltstring) /* If HIDE_SPACES, reject alternatives that start with space unless the input starts with space. */ - && ((SBYTES (string) > 0 - && SREF (string, 0) == ' ') - || SREF (eltstring, 0) != ' ' - || NILP (hide_spaces)) + && (NILP (hide_spaces) + || (SBYTES (string) > 0 + && SREF (string, 0) == ' ') + || SREF (eltstring, 0) != ' ') && (tem = Fcompare_strings (eltstring, zero, make_number (SCHARS (string)), string, zero,